header serialPortOne
{
   	// Showing how to use the serial port for receiving a line (newline terminated string)... 
	// By Mauro Grassi
}

script TrialOne
{
	// Open a Digital Output
	@@openIO(#D0, #outputIO);
        $A=0;
	// Open the serial port at 4800 bps, Tx on #D5 and Rx on #D4...
	@@openUART(#noRxInvUART, 4800, #D5, #D4);
	while(1)
	{
	
	"@@openUART",		"@@closeUART",	"@@getUART",	"@@putUART",	"@@notEmptyUART",	  "@@getSizeUART",
	"@@getLastRxUART",	"@@clearUART",	"@@getErrorUART",	  "@@receivedNMEAUART", 
	"@@matchNMEAString",

		
	
	

	}
}
